home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 30 / Mac Magazin and MacEasy Magazine CD - Issue 30.iso / utilities / Mac OS X / Load_Monitor / src / TranslucentView.h < prev    next >
Encoding:
Text File  |  2001-11-24  |  452 b   |  24 lines

  1. //
  2. //  TranslucentView.h
  3. //
  4. //  Created by Takashi T. Hamada on Thu Nov 01 2000.
  5. //  Copyright (c) 2000,2001 Takashi T. Hamada. All rights reserved.
  6. //
  7.  
  8. #import <Cocoa/Cocoa.h>
  9.  
  10.  
  11. @interface TranslucentView : NSView
  12. {
  13.     id                theContentDrawer;
  14.     SEL                theDrawingMethod;
  15.  
  16.     NSTrackingRectTag        calBGViewRectTag;
  17.     float            ImageOpacity;
  18. }
  19.  
  20. - (void)mouseDown:(NSEvent *)theEvent;
  21. - (void)setContentDrawer:(id)theDrawer method:(SEL)theMethod;
  22.  
  23. @end
  24.